Sha256: 3aa85146670558789335591d8073047e5cdb0a2a5d7ba3c830c19f239c3991c4
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
require 'spec_helper' module RailsBestPractices module Prepares describe HelperPrepare do let(:runner) { Core::Runner.new(prepares: HelperPrepare.new) } context 'methods' do it 'should parse helper methods' do content =<<-EOF module PostsHelper def used; end def unused; end end EOF runner.prepare('app/helpers/posts_helper.rb', content) methods = Prepares.helper_methods expect(methods.get_methods('PostsHelper').map(&:method_name)).to eq(['used', 'unused']) end it 'should parse helpers' do content =<<-EOF module PostsHelper end EOF runner.prepare('app/helpers/posts_helper.rb', content) content =<<-EOF module Admin::UsersHelper end EOF runner.prepare('app/helpers/users_helper.rb', content) content =<<-EOF module Admin module BaseHelper end end EOF runner.prepare('app/helpers/base_helper.rb', content) helpers = Prepares.helpers expect(helpers.map(&:to_s)).to eq(['PostsHelper', 'Admin::UsersHelper', 'Admin', 'Admin::BaseHelper']) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_best_practices-1.19.1 | spec/rails_best_practices/prepares/helper_prepare_spec.rb |