Ejemplo n.º 1
0
 def test_cost_attribute_is_None(self):
     """testing if the cost attribute will be 0.0 if it is set to None
     """
     g = Good(**self.kwargs)
     self.assertNotEqual(g.cost, 0)
     g.cost = None
     self.assertEqual(g.cost, 0)
Ejemplo n.º 2
0
 def test_msrp_attribute_is_None(self):
     """testing if the msrp attribute will be 0.0 if it is set to None
     """
     g = Good(**self.kwargs)
     self.assertNotEqual(g.msrp, 0)
     g.msrp = None
     self.assertEqual(g.msrp, 0)
Ejemplo n.º 3
0
 def test_unit_attribute_is_working_properly(self):
     """testing if the unit attribute value can be changed properly
     """
     test_value = 'this is my unit'
     g = Good(**self.kwargs)
     self.assertNotEqual(g.unit, test_value)
     g.unit = test_value
     self.assertEqual(g.unit, test_value)
Ejemplo n.º 4
0
 def test_unit_attribute_is_set_to_None(self):
     """testing if the unit attribute will be an empty string if it is set
     to None
     """
     g = Good(**self.kwargs)
     self.assertNotEqual(g.unit, '')
     g.unit = None
     self.assertEqual(g.unit, '')
Ejemplo n.º 5
0
 def test_msrp_attribute_is_zero(self):
     """testing if it is totally ok to test the msrp attribute to 0
     """
     g = Good(**self.kwargs)
     self.assertNotEqual(g.msrp, 0.0)
     g.msrp = 0.0
     self.assertEqual(
         g.msrp,
         0.0
     )
Ejemplo n.º 6
0
    def test_unit_attribute_is_not_a_string(self):
        """testing if a TypeError will be raised if the unit attribute is set
        to a value which is not a string
        """
        g = Good(**self.kwargs)
        with self.assertRaises(TypeError) as cm:
            g.unit = 2342

        self.assertEqual(str(cm.exception),
                         'Good.unit should be a string, not int')
Ejemplo n.º 7
0
    def test_msrp_attribute_is_negative(self):
        """testing if ValueError will be raised if the msrp attribute is set to
        a negative number
        """
        g = Good(**self.kwargs)
        with self.assertRaises(ValueError) as cm:
            g.msrp = -10

        self.assertEqual(str(cm.exception),
                         'Good.msrp should be a non-negative number')
Ejemplo n.º 8
0
    def test_msrp_attribute_is_not_a_number(self):
        """testing if a TypeError will be raised if the msrp attribute is set
        to something other than a number
        """
        g = Good(**self.kwargs)
        with self.assertRaises(TypeError) as cm:
            g.msrp = 'not a number'

        self.assertEqual(str(cm.exception),
                         'Good.msrp should be a non-negative number, not str')
Ejemplo n.º 9
0
 def test_cost_attribute_is_zero(self):
     """testing if it is totally ok to test the cost attribute to 0
     """
     g = Good(**self.kwargs)
     self.assertNotEqual(g.cost, 0.0)
     g.cost = 0.0
     self.assertEqual(
         g.cost,
         0.0
     )
Ejemplo n.º 10
0
    def test_client_attribute_is_set_to_a_value_other_than_a_client(self):
        """testing if a TypeError will be raised when the client attribute is
        set to a value other than a Client instance
        """
        g = Good(**self.kwargs)
        with pytest.raises(TypeError) as cm:
            g.client = 'not a client'

        assert str(cm.value) == \
            'Good.client attribute should be a stalker.models.client.Client ' \
            'instance, not str'
Ejemplo n.º 11
0
    def test_goods_attribute_is_working_properly(self):
        """testing if the goods attribute is working properly
        """
        client1 = Client(**self.kwargs)
        from stalker.models.budget import Good
        good1 = Good(name='Test Good 1')
        good2 = Good(name='Test Good 2')
        good3 = Good(name='Test Good 3')
        client1.goods = [good1, good2, good3]

        assert client1.goods == [good1, good2, good3]
Ejemplo n.º 12
0
    def test_cost_attribute_is_not_a_number(self):
        """testing if a TypeError will be raised if the cost attribute is set
        to something other than a number
        """
        g = Good(**self.kwargs)
        with self.assertRaises(TypeError) as cm:
            g.cost = 'not a number'

        self.assertEqual(
            str(cm.exception),
            'Good.cost should be a non-negative number, not str'
        )
Ejemplo n.º 13
0
    def test_unit_attribute_is_not_a_string(self):
        """testing if a TypeError will be raised if the unit attribute is set
        to a value which is not a string
        """
        g = Good(**self.kwargs)
        with self.assertRaises(TypeError) as cm:
            g.unit = 2342

        self.assertEqual(
            str(cm.exception),
            'Good.unit should be a str, not int'
        )
Ejemplo n.º 14
0
    def test_msrp_attribute_is_negative(self):
        """testing if ValueError will be raised if the msrp attribute is set to
        a negative number
        """
        g = Good(**self.kwargs)
        with self.assertRaises(ValueError) as cm:
            g.msrp = -10

        self.assertEqual(
            str(cm.exception),
            'Good.msrp should be a non-negative number'
        )
Ejemplo n.º 15
0
 def test_msrp_attribute_is_working_properly(self):
     """testing if the msrp attribute value can be properly changed
     """
     test_value = 145
     g = Good(**self.kwargs)
     self.assertNotEqual(
         g.msrp,
         test_value
     )
     g.msrp = test_value
     self.assertEqual(
         g.msrp,
         test_value
     )
Ejemplo n.º 16
0
 def test_msrp_argument_is_skipped(self):
     """testing if the msrp attribute value will be 0.0 if the msrp argument
     is skipped
     """
     self.kwargs.pop('msrp')
     g = Good(**self.kwargs)
     assert g.msrp == 0
Ejemplo n.º 17
0
 def test_unit_argument_is_None(self):
     """testing if the unit attribute will be an empty string if the unit
     argument is None
     """
     self.kwargs['unit'] = None
     g = Good(**self.kwargs)
     assert g.unit == ''
Ejemplo n.º 18
0
 def test_cost_argument_is_skipped(self):
     """testing if the cost attribute value will be 0.0 if the cost argument
     is skipped
     """
     self.kwargs.pop('cost')
     g = Good(**self.kwargs)
     assert g.cost == 0
Ejemplo n.º 19
0
 def test_unit_argument_is_skipped(self):
     """testing if the unit attribute will be an empty string if the unit
     argument is skipped
     """
     self.kwargs.pop('unit')
     g = Good(**self.kwargs)
     assert g.unit == ''
Ejemplo n.º 20
0
 def test_msrp_argument_is_None(self):
     """testing if the msrp attribute value will be 0.0 if the msrp argument
     is None
     """
     self.kwargs['msrp'] = None
     g = Good(**self.kwargs)
     assert g.msrp == 0
Ejemplo n.º 21
0
 def test_cost_argument_is_None(self):
     """testing if the cost attribute value will be 0.0 if the cost argument
     is None
     """
     self.kwargs['cost'] = None
     g = Good(**self.kwargs)
     assert g.cost == 0
Ejemplo n.º 22
0
 def test_client_argument_is_none(self):
     """testing if a Good can be created without a Client
     """
     self.kwargs['client'] = None
     g = Good(**self.kwargs)
     assert g is not None
     assert isinstance(g, Good)
Ejemplo n.º 23
0
 def test_client_argument_is_skipped(self):
     """testing if a Good can be created without a Client
     """
     self.kwargs.pop('client', None)
     g = Good(**self.kwargs)
     assert g is not None
     assert isinstance(g, Good)
Ejemplo n.º 24
0
 def test_cost_argument_is_working_properly(self):
     """testing if the cost argument value is properly passed to the cost
     attribute
     """
     test_value = 113
     self.kwargs['cost'] = test_value
     g = Good(**self.kwargs)
     assert g.cost == test_value
Ejemplo n.º 25
0
 def test_unit_argument_is_working_properly(self):
     """testing if the unit argument value is properly passed to the unit
     attribute
     """
     test_value = 'this is my unit'
     self.kwargs['unit'] = test_value
     g = Good(**self.kwargs)
     assert g.unit == test_value
Ejemplo n.º 26
0
 def test_client_argument_is_working_properly(self):
     """testing if the client argument is working properly
     """
     from stalker.models.client import Client
     client = Client(name='Test Client')
     self.kwargs['client'] = client
     g = Good(**self.kwargs)
     assert g.client == client
Ejemplo n.º 27
0
 def test_msrp_argument_is_working_properly(self):
     """testing if the msrp argument value is properly passed to the msrp
     attribute
     """
     test_value = 113
     self.kwargs['msrp'] = test_value
     g = Good(**self.kwargs)
     assert g.msrp == test_value
Ejemplo n.º 28
0
    def test_cost_argument_is_negative(self):
        """testing if a ValueError will be raised if the cost argument is a
        negative number
        """
        self.kwargs['cost'] = -10
        with pytest.raises(ValueError) as cm:
            g = Good(**self.kwargs)

        assert str(cm.value) == 'Good.cost should be a non-negative number'
Ejemplo n.º 29
0
    def test_cost_argument_is_negative(self):
        """testing if a ValueError will be raised if the cost argument is a
        negative number
        """
        self.kwargs['cost'] = -10
        with self.assertRaises(ValueError) as cm:
            g = Good(**self.kwargs)

        self.assertEqual(str(cm.exception),
                         'Good.cost should be a non-negative number')
Ejemplo n.º 30
0
    def test_cost_argument_is_not_a_number(self):
        """testing if a TypeError will be raised if cost argument is not a
        number
        """
        self.kwargs['cost'] = 'not a number'
        with pytest.raises(TypeError) as cm:
            g = Good(**self.kwargs)

        assert str(cm.value) == \
            'Good.cost should be a non-negative number, not str'
Ejemplo n.º 31
0
    def test_cost_argument_is_not_a_number(self):
        """testing if a TypeError will be raised if cost argument is not a
        number
        """
        self.kwargs['cost'] = 'not a number'
        with self.assertRaises(TypeError) as cm:
            g = Good(**self.kwargs)

        self.assertEqual(str(cm.exception),
                         'Good.cost should be a non-negative number, not str')
Ejemplo n.º 32
0
    def test_unit_argument_is_not_a_string(self):
        """testing if a TypeError will be raised if the unit argument is not a
        string
        """
        self.kwargs['unit'] = 12312
        with pytest.raises(TypeError) as cm:
            g = Good(**self.kwargs)

        assert str(cm.value) == \
            'Good.unit should be a string, not int'
Ejemplo n.º 33
0
    def test_unit_argument_is_not_a_string(self):
        """testing if a TypeError will be raised if the unit argument is not a
        string
        """
        self.kwargs['unit'] = 12312
        with self.assertRaises(TypeError) as cm:
            g = Good(**self.kwargs)

        self.assertEqual(str(cm.exception),
                         'Good.unit should be a str, not int')
Ejemplo n.º 34
0
    def test_client_argument_is_not_a_client_instance(self):
        """testing if a TypeError will be raised if the client argument is not
        a Client instance
        """
        self.kwargs['client'] = 'not a client'
        with pytest.raises(TypeError) as cm:
            Good(**self.kwargs)

        assert str(cm.value) == \
            'Good.client attribute should be a stalker.models.client.Client ' \
            'instance, not str'
Ejemplo n.º 35
0
 def test_cost_argument_is_zero(self):
     """testing if it is totally ok to set the cost to 0
     """
     self.kwargs['cost'] = 0
     g = Good(**self.kwargs)
     assert g.cost == 0.0
Ejemplo n.º 36
0
 def test_msrp_argument_is_zero(self):
     """testing if it is totally ok to set the msrp to 0
     """
     self.kwargs['msrp'] = 0
     g = Good(**self.kwargs)
     assert g.msrp == 0.0