Passed
Push — master ( 684169...29f120 )
by Rafael S.
01:50
created

TestReverseStockSplitCase00   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 6
rs 10
1
"""Tests for ReverseStockSplit events."""
2
3
from __future__ import absolute_import
4
5
from fixtures.events import EVENT9
6
from fixtures.logtest import LogTest
7
from fixtures.accumulator_states import (
8
    INITIAL_STATE0, EXPECTED_STATE20
9
)
10
11
12
class TestReverseStockSplitCase00(LogTest):
13
    """Test the accumulation of a ReverseStockSplit event."""
14
15
    initial_state = INITIAL_STATE0
16
    occurrences = [EVENT9]
17
    expected_state = EXPECTED_STATE20
18