This repository has been archived on 2024-12-01. You can view files and clone it, but cannot push or open issues or pull requests.
redmine_rodax_crm/test/unit/contact_test.rb
2012-01-03 16:18:32 +00:00

19 lines
459 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class ContactTest < ActiveSupport::TestCase
fixtures :contacts
# Replace this with your real tests.
test "Should get first by email" do
emails = ["marat@mail.ru", "domoway.mail.ru"]
assert_equal 2, Contact.find_by_emails(emails).count
end
test "Should get first by second email" do
emails = ["marat@mail.com"]
assert_equal 1, Contact.find_by_emails(emails).count
end
end