|
|
|
|
|
by NortySpock
1294 days ago
|
|
I fend off the "magic numbers" people with a variable with a name that describes what the magic number is for. var expectedAccountBalance = 2500
expect(account1.balance).to eq expectedAccountBalance
expect(account1.balance).to eq account2.balance
|
|