Navigation Menu

Skip to content

Commit

Permalink
Added spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
btakita committed Aug 13, 2008
1 parent 4bb792c commit d69510d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions spec/rr_spec.rb
@@ -0,0 +1,28 @@
require "#{File.dirname(__FILE__)}/spec_helper"

describe "RR" do
before do
Object.class_eval do
def verify
raise "Dont call me"
end
end
end

after do
Object.class_eval do
remove_method :verify
end
end

it "has proxy methods for each method defined directly on Space" do
space_instance_methods = RR::Space.instance_methods(false)
space_instance_methods.should_not be_empty

rr_instance_methods = RR.methods(false)
space_instance_methods.each do |space_instance_method|
rr_instance_methods.should include(space_instance_method)
end
RR.verify
end
end

0 comments on commit d69510d

Please sign in to comment.