Sha256: 7ac7d90da0986f104a8f2383c10cdf58f74a013d0d5b113ecc63091810c969c0
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
require 'spec_helper' describe PrivatePlease, 'reporting the calls on candidates' do module Reporting class Simple def public_m ; private_m1a() end def private_m1a ; private_m1b end def private_m1b ; private_m1c end def private_m ; private_m1c end def private_m1c ; 'SUCCESS' end def ignored ; 'never called' end private_please :private_m1a, :private_m1b, :private_m1c, :private_m, :ignored end end before() { PrivatePlease.activate(true) } before do Reporting::Simple.new.public_m Reporting::Simple.new.private_m Reporting::Simple.new.private_m1c end describe 'the activity report' do let(:the_report) { PrivatePlease.report } specify '#good_candidates is the list of methods that CAN be made private' do the_report.good_candidates['Reporting::Simple']. should =~ [:private_m1a, :private_m1b] end specify '#bad_candidates is the list of methods that CANNOT be made private' do the_report.bad_candidates['Reporting::Simple']. should =~ [:private_m1c, :private_m] end xspecify '#never_called_candidates is the list of methods that were never called' do the_report.never_called_candidates['Reporting::Simple']. should == [:ignored] end end specify 'at_exit prints the report in the STDOUT' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
private_please-0.0.2 | spec/04_at_exit_report_printing_spec.rb |
private_please-0.0.1 | spec/04_at_exit_report_printing_spec.rb |