Back

ruby , rspec中测试 module

发布时间: 2012-07-30 10:29:00

见:  http://stackoverflow.com/questions/1542945/testing-modules-in-rspec/1546493#1546493

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



Back