forked from routablehq/python-quickbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_department.py
More file actions
30 lines (21 loc) · 804 Bytes
/
test_department.py
File metadata and controls
30 lines (21 loc) · 804 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.department import Department
class DepartmentTests(unittest.TestCase):
def test_unicode(self):
department = Department()
department.Name = "test"
self.assertEquals(str(department), "test")
def test_to_ref(self):
department = Department()
department.Name = "test"
department.Id = 100
dept_ref = department.to_ref()
self.assertEquals(dept_ref.name, "test")
self.assertEquals(dept_ref.type, "Department")
self.assertEquals(dept_ref.value, 100)
def test_valid_object_name(self):
obj = Department()
client = QuickBooks()
result = client.isvalid_object_name(obj.qbo_object_name)
self.assertTrue(result)