forked from routablehq/python-quickbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_customer.py
More file actions
30 lines (21 loc) · 770 Bytes
/
test_customer.py
File metadata and controls
30 lines (21 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import unittest
from quickbooks import QuickBooks
from quickbooks.objects.customer import Customer
class CustomerTests(unittest.TestCase):
def test_unicode(self):
customer = Customer()
customer.DisplayName = "test"
self.assertEquals(str(customer), "test")
def test_to_ref(self):
customer = Customer()
customer.DisplayName = "test"
customer.Id = 100
ref = customer.to_ref()
self.assertEquals(ref.name, "test")
self.assertEquals(ref.type, "Customer")
self.assertEquals(ref.value, 100)
def test_valid_object_name(self):
obj = Customer()
client = QuickBooks()
result = client.isvalid_object_name(obj.qbo_object_name)
self.assertTrue(result)