Skip to content

Instantly share code, notes, and snippets.

@jfirebaugh
Created January 21, 2011 21:55
Show Gist options
  • Save jfirebaugh/790500 to your computer and use it in GitHub Desktop.
Save jfirebaugh/790500 to your computer and use it in GitHub Desktop.
require 'rspec'
describe "a TestClass" do
class self::TestClass < String
end
end
describe "other TestClass" do
class ::TestClass < Integer
end
end
module A
module B
end
end
describe "third TestClass" do
class A::B::TestClass < Integer
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment