工程费用是指直接构成固定资产实体的各项费用,包括((______ ))、((______ ))和 ((#Blank:3#))。
查看答案
财务分析一般应考查项目的((______ ))能力、((______ ))能力和((#Blank:3#))能力。
The method that contacts TMDb to search for a movie should be:
A class method of the Movie model
B. An instance method of the Movie model
C. A controller method
D. A helper method
Which is FALSE about "should_receive"
A. It provides a stand-in for a real method that doesn’t exist yet
B. It would override the real method, even if it did exist
C. It can be issued either before or after the code that should make the call
D. It exploits Ruby’s open classes and metaprogramming to "intercept" a method call at testing time
Eventually we will have to write a real find_in_tmdb. When that happens, we should:
A. Replace the call to to_receive in our test with a call to the real find_in_tmdb
B. Ensure the API to the real find_in_tmdb matches the fake one used by to_receive
C. Keep the to_receive seam in the spec, but if necessary, change the spec to match the API of the real find_in_tmdb
D. Remove this spec (test case) altogether since it isn’t really testing anything anymore