| 12345678910111213141516171819202122232425 | 
							- <?php
 
- namespace spec\Gaufrette\Adapter;
 
- use PhpSpec\ObjectBehavior;
 
- class MogileFSSpec extends ObjectBehavior
 
- {
 
-     function let()
 
-     {
 
-         $this->beConstructedWith('http://domain.com', array('localhost'));
 
-     }
 
-     function it_is_adapter()
 
-     {
 
-         $this->shouldHaveType('Gaufrette\Adapter');
 
-     }
 
-     function it_does_not_handle_mtime()
 
-     {
 
-         $this->mtime('filename')->shouldReturn(false);
 
-         $this->mtime('filename2')->shouldReturn(false);
 
-     }
 
- }
 
 
  |