|
@ -1,4 +1,3 @@ |
|
|
# -*- coding: utf-8 -*- |
|
|
|
|
|
# Copyright 2017 Specialty Medical Drugstore |
|
|
# Copyright 2017 Specialty Medical Drugstore |
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
@ -7,7 +6,7 @@ from odoo.tests.common import TransactionCase |
|
|
|
|
|
|
|
|
class TestBaseKanbanStage(TransactionCase): |
|
|
class TestBaseKanbanStage(TransactionCase): |
|
|
def test_get_states(self): |
|
|
def test_get_states(self): |
|
|
'''It should return a list of stages''' |
|
|
|
|
|
|
|
|
"""It should return a list of stages""" |
|
|
test_stage = self.env['base.kanban.stage'].with_context({}) |
|
|
test_stage = self.env['base.kanban.stage'].with_context({}) |
|
|
|
|
|
|
|
|
self.assertEqual(test_stage._get_states(), |
|
|
self.assertEqual(test_stage._get_states(), |
|
|