Sha256: 7c7949a4d79861672f481179261759558934b26dcd85fba953aa5c0b96a3c9a1

Contents?: true

Size: 303 Bytes

Versions: 3

Compression:

Stored size: 303 Bytes

Contents

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
picolena-0.1.6 rails_plugins/rspec/examples/pure/helper_method_example.rb
picolena-0.1.7 rails_plugins/rspec/examples/pure/helper_method_example.rb
picolena-0.1.8 rails_plugins/rspec/examples/pure/helper_method_example.rb