adds autolinking to proposal's description

This commit is contained in:
Juanjo Bazán
2015-09-13 18:03:00 +02:00
parent 4c4c467b3e
commit e610642485
3 changed files with 47 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ describe Lock do
expect(lock.locked?).to be true
end
it "return false if locked_until is before curren time" do
it "return false if locked_until is before current time" do
lock.locked_until = 1.day.ago
expect(lock.locked?).to be false
end