Sha256: 7f613d12104739c836144e567948e230b19e7ae19814a32b1a08dbd0d7a5f811
Contents?: true
Size: 1 KB
Versions: 5
Compression:
Stored size: 1 KB
Contents
require 'spec_helper' describe 'method call matcher' do context "content without method call" do not_call = %q{ def hello end} it "should not have call hello" do not_call.should_not have_call :hello end end context "content with call hello" do call = 'hello' it "should have call to hello" do call.should have_call :hello end end context "content with call hello" do call = %q{ def hello x.hello end} it "should have call to hello" do call.should have_dot_call :hello end end context "class User with call role_strategy" do clazz = %q{ class User < ActiveRecord::Base include RoleModels::Generic role_strategy :admin_flag roles :admin,:user end} it "should have call to role_strategy with args :admin_flag" do clazz.should have_call :role_strategy, :args => ':admin_flag' end end end
Version data entries
5 entries across 5 versions & 1 rubygems