openstreetmap-website/vendor/gems/rspec-1.1.2/examples/pure/helper_method_example.rb
2008-01-22 16:39:09 +00:00

14 lines
305 B
Ruby

require File.dirname(__FILE__) + '/spec_helper'
module HelperMethodExample
describe "an example group with helper a method" do
def helper_method
"received call"
end
it "should make that method available to specs" do
helper_method.should == "received call"
end
end
end