| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function it_provides_a_lazy_interface_to_libary_objects(AlmaClient $client) |
||
| 26 | { |
||
| 27 | SpecHelper::expectNoRequests($client); |
||
| 28 | |||
| 29 | $libraryCode = 'THAT_LIBRARY'; |
||
| 30 | $library = $this->get($libraryCode); |
||
| 31 | |||
| 32 | $library->shouldBeAnInstanceOf(Library::class); |
||
| 33 | $library->code->shouldBe($libraryCode); |
||
| 34 | } |
||
| 35 | |||
| 47 |