| 1 | <?php |
||
| 11 | class MessageNodeSpec extends ObjectBehavior |
||
| 12 | { |
||
| 13 | function it_is_initializable() |
||
| 14 | { |
||
| 15 | $this->shouldHaveType(MessageNode::CLASS); |
||
| 16 | } |
||
| 17 | |||
| 18 | function it_implements_node_interface() |
||
| 19 | { |
||
| 20 | $this->shouldHaveType(Node::CLASS); |
||
| 21 | } |
||
| 22 | |||
| 23 | function it_contains_a_type() |
||
| 24 | { |
||
| 25 | $this->getType()->shouldEqual('MessageNode'); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |