Sha256: f9abd4a1d6c07057b46a5627c9656b50f869f1c9f3ec9d81f591d6e69a7bed02
Contents?: true
Size: 442 Bytes
Versions: 70
Compression:
Stored size: 442 Bytes
Contents
require 'ruby_app/mixins/delegate_mixin' describe RubyApp::Mixins::DelegateMixin do describe 'positive' do before(:all) do class TestDelegateMixin extend RubyApp::Mixins::DelegateMixin def get_a return TestDelegateMixin end def self.get TestDelegateMixin.new end end end specify { TestDelegateMixin.get_a.should == TestDelegateMixin } end end
Version data entries
70 entries across 70 versions & 1 rubygems