1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-31 20:03:06 +00:00

updated free space test.

This commit is contained in:
kay.one 2013-08-31 22:30:21 -07:00
parent 3b240e0dd7
commit 511e365ccb

View file

@ -34,11 +34,10 @@ public void should_get_free_space_for_drive_that_doesnt_exist()
}
[Test]
public void should_return_null_when_cant_get_free_space()
public void should_be_able_to_check_space_on_ramdrive()
{
LinuxOnly();
Subject.GetAvailableSpace("/run/").Should().NotBe(null);
Subject.GetAvailableSpace("/run/").Should().NotBe(0);
}
}
}