ruby , rspec中测试 module
访问量: 2478
见: http://stackoverflow.com/questions/1542945/testing-modules-in-rspec/1546493#1546493
What mike said. Here's a trivial example:
module code...
spec fragment...
What mike said. Here's a trivial example:
module code...
module Say
def hello
"hello"
end
end
spec fragment...
class DummyClass end before(:each) do @dummy_class = DummyClass.new @dummy_class.extend(Say) end it "get hello string" do @dummy_class.hello.should == "hello" end