Sha256: 21e9e4d83028443ae7e076c6eb0715f3b845fc30dbf6b8d9b324612d2b65a22e
Contents?: true
Size: 717 Bytes
Versions: 2
Compression:
Stored size: 717 Bytes
Contents
require 'spec_helper' root_dir = RailsAssist::Directory.rails_root 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails-app-spec-0.4.0 | spec/rails_app_spec/matchers/artifact/helper_spec.rb |
rails-app-spec-0.3.3 | spec/rails_app_spec/matchers/artifact/helper_spec.rb |