git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
19 lines
459 B
Ruby
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
|