python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a way to build multiple models and create relationship between the models and user in RSpec?
I have this method:
def current_budget(user)
total = 0
user.transactions.each do |t|
if t.income_or_expense
total += t.amount
else
total -= t.amount
end
...
cumabolat
Votes: 0
Answers: 1
ActiveRecord methods(find_by, find etc) not working when using use_transactional_fixtures = true in rspec
I am trying to move from use_transactional_fixtures = false to use_transactional_fixtures = true on my ROR application.
Many cases are failing after setting use_transactional_fixtures = true in RSpec ...
Surabhi ojha
Votes: 0
Answers: 0
Rails Rspec - How to test if Service has been called in another Service
While writing tests, I stopped at trying to test Service in another Service. In such a situation, I should probably just check if Service has been called because it has already been tested elsewhere. ...
N0ne
Votes: 0
Answers: 1
Index deleted randomly on Rspec spec during CircleCI job
During execution time of specs on a job from CircleCI an index from Elasticsearch is either randomly deleted or not created throwing the following error:
Failure/Error: build_query.segment(:access_dat...

MJCune
Votes: 0
Answers: 0