Closed GoogleCodeExporter closed 9 years ago
Can you help me repro this with a test? Here's my passing test:
[Test]
public void ActiveRecord_IsLoaded_ShouldBe_False_When_Record_Not_Present() {
Product p = new Product(1);
Assert.IsTrue(p.IsLoaded);
p = new Product(1111111);
Assert.IsFalse(p.IsLoaded);
}
Can't repro this...
Original comment by robcon...@gmail.com
on 8 Apr 2009 at 3:18
The difference between your test and the original issue is the constructor
used. Does
it repro if you use the other constructor overload?
Original comment by rimsyst...@gmail.com
on 8 Apr 2009 at 3:54
Ahh - thanks. Found it.
Fixed in revision 496
Original comment by robcon...@gmail.com
on 8 Apr 2009 at 5:26
Original issue reported on code.google.com by
madhukar...@gmail.com
on 23 Jul 2008 at 8:13