Sha256: e87d0c4b32267e612945156b900061dc75dfa9afff5919218e3ab2bb31d6d078
Contents?: true
Size: 724 Bytes
Versions: 1
Compression:
Stored size: 724 Bytes
Contents
require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper') describe 'rails helper' do use_helper :helper before :each do create_helper :account do %q{ def help_me end } end end after :each do remove_helper :account end it "should have an account_helper file that contains an AccountHelper class with a help_me method inside" do root_dir.should have_helper_file :account do |file| file.should have_helper_class :account do |klass| klass.should have_method :help_me end end root_dir.should have_helper :account do |klass| klass.should have_method :help_me end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails-app-spec-0.1.0 | spec/rails_app_spec/matchers/artifact/helper_spec.rb |