def test_EFSFileSystem_status(self):
        test_instance = file_system.EFSFileSystem(
            "ctx_node", resource_id='fs_id', client=self.fake_client,
            logger=None
        )

        self.assertEqual(test_instance.status, None)
    def test_EFSFileSystem_properties_NotEmpty(self):
        test_instance = file_system.EFSFileSystem("ctx_node",
                                                  resource_id='fs_id',
                                                  client=self.fake_client,
                                                  logger=None)

        self.fake_client.describe_file_systems = MagicMock(
            return_value={'FileSystems': ['Some_FileSystem']})

        self.assertEqual(test_instance.properties, 'Some_FileSystem')

        self.fake_client.describe_file_systems.assert_called_with(
            FileSystemId='fs_id')