Mock a Active Record abstract class and how to stub a nil object in rails test::unit/mocha?
Asked Answered
F

1

6

i have two question

1.How do i stub a nil object in rails test cases.

2.Mock an Active Record Abstract class

  1. I have a application X with a test database X_test, Now i need to stub an database y_test which doesn't exist and which implements Active Record object and is a abstract class

for example

Y::table.find_by_email("[email protected]").selected_lan["iden"]

      module Y
        class table <Base
          belongs_to:selected_lan, :class =>lan
          def self.find_by_email(iden)
           find_by_email(license_iden)
          end
        end
     end

    module Y
       class Base <ActiveRecord::Base
         self.abstract_class = true
       end
    end
Forbidding answered 9/3, 2012 at 11:55 Comment(0)
S
2
Y::table.expects(:find_by_email).with('[email protected]').returns(nil)
Sejant answered 9/3, 2012 at 12:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.