|
|
|
@ -5,6 +5,7 @@ describe TimeEntry do |
|
|
|
|
before(:each) do |
|
|
|
|
User.current = users("admin") |
|
|
|
|
@example = time_entries "example" |
|
|
|
|
@default_example = time_entries "default_example" |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
fixtures :users |
|
|
|
@ -24,6 +25,8 @@ describe TimeEntry do |
|
|
|
|
@example.save! |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
describe "given rate" do |
|
|
|
|
|
|
|
|
|
it "should return the current costs depending on the number of hours" do |
|
|
|
|
(0..100).each do |hours| |
|
|
|
|
@example.hours = hours |
|
|
|
@ -82,3 +85,64 @@ describe TimeEntry do |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
describe "default rate" do |
|
|
|
|
|
|
|
|
|
it "should return the current costs depending on the number of hours" do |
|
|
|
|
(0..100).each do |hours| |
|
|
|
|
@default_example.hours = hours |
|
|
|
|
@default_example.save! |
|
|
|
|
@default_example.costs.should == @default_example.rate.rate * hours |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "should update cost if a new rate is added at the end" do |
|
|
|
|
@default_example.user = users("john") |
|
|
|
|
@default_example.spent_on = Time.now.to_date |
|
|
|
|
@default_example.hours = 1 |
|
|
|
|
@default_example.save! |
|
|
|
|
@default_example.costs.should == rates("default_hourly_one").rate |
|
|
|
|
hourly = DefaultHourlyRate.create! :valid_from => 1.day.ago.to_date, :rate => 1.0, :user => users("john") |
|
|
|
|
@default_example.reload |
|
|
|
|
@default_example.rate.should_not == rates("default_hourly_one") |
|
|
|
|
@default_example.costs.should == hourly.rate |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "should update cost if a new rate is added in between" do |
|
|
|
|
@default_example.user = users("john") |
|
|
|
|
@default_example.spent_on = 3.days.ago.to_date |
|
|
|
|
@default_example.hours = 1 |
|
|
|
|
@default_example.save! |
|
|
|
|
@default_example.costs.should == rates("default_hourly_three").rate |
|
|
|
|
hourly = DefaultHourlyRate.create! :valid_from => 3.days.ago.to_date, :rate => 1.0, :user => users("john") |
|
|
|
|
@default_example.reload |
|
|
|
|
@default_example.rate.should_not == rates("default_hourly_three") |
|
|
|
|
@default_example.costs.should == hourly.rate |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "should update cost if a spent_on changes" do |
|
|
|
|
@default_example.hours = 1 |
|
|
|
|
(5.days.ago..Time.now).step(1.day) do |time| |
|
|
|
|
@default_example.spent_on = time.to_date |
|
|
|
|
@default_example.save! |
|
|
|
|
@default_example.costs.should == @default_example.user.rate_at(time, 1).rate |
|
|
|
|
end |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
it "should update cost if a rate is removed" do |
|
|
|
|
default_hourly_one = rates("default_hourly_one") |
|
|
|
|
@default_example.spent_on = default_hourly_one.valid_from |
|
|
|
|
@default_example.hours = 1 |
|
|
|
|
@default_example.save! |
|
|
|
|
@default_example.costs.should == default_hourly_one.rate |
|
|
|
|
default_hourly_one.destroy |
|
|
|
|
@default_example.reload |
|
|
|
|
@default_example.costs.should == rates("default_hourly_three").rate |
|
|
|
|
rates("default_hourly_three").destroy |
|
|
|
|
@default_example.reload |
|
|
|
|
@default_example.costs.should == rates("default_hourly_five").rate |
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
end |