Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Testing Ruby with RSpec: The Complete Guide, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:13:04
    Welcome to RSpec
  • Урок 2. 00:09:18
    Unit Tests vs End-to-End (E2E) Tests
  • Урок 3. 00:03:12
    Installing RSpec
  • Урок 4. 00:10:19
    Starting a Project with rspec --init
  • Урок 5. 00:05:29
    Test-Driven Development
  • Урок 6. 00:04:43
    The describe Method
  • Урок 7. 00:05:34
    The it Method
  • Урок 8. 00:08:02
    The expect and eq Methods
  • Урок 9. 00:07:31
    Reading Failures
  • Урок 10. 00:08:58
    Making the Specs Pass
  • Урок 11. 00:08:02
    Multiple Examples in Example Group
  • Урок 12. 00:08:24
    Fixing Failing Specs Again
  • Урок 13. 00:10:59
    Reducing Duplication - Before Hooks and Instance Variables
  • Урок 14. 00:04:13
    Reducing Duplication: Helper Methods
  • Урок 15. 00:06:04
    Problems With Mutation
  • Урок 16. 00:15:06
    Reducing Duplication: The let Method
  • Урок 17. 00:04:40
    Custom Error Messages
  • Урок 18. 00:08:18
    The context Method and Nested Describes
  • Урок 19. 00:09:08
    before and after Hooks
  • Урок 20. 00:12:01
    Nested Logic: Hooks
  • Урок 21. 00:08:54
    Nested Logic: Overwriting Let Variables
  • Урок 22. 00:07:38
    Implicit Subject
  • Урок 23. 00:05:39
    Explicit Subject
  • Урок 24. 00:06:14
    described_class
  • Урок 25. 00:05:08
    One-Liner-Example-Syntax
  • Урок 26. 00:10:12
    Shared Examples with include_examples
  • Урок 27. 00:07:35
    Shared Context with include_context
  • Урок 28. 00:04:39
    The not_to Method
  • Урок 29. 00:05:31
    Equality Matchers I (eq and eql)
  • Урок 30. 00:09:51
    Equality Matchers II (equal and be)
  • Урок 31. 00:06:04
    Comparison Matchers
  • Урок 32. 00:07:46
    Predicate Matchers
  • Урок 33. 00:06:21
    all Matcher
  • Урок 34. 00:07:24
    be Matcher (Truthy, Falsy and Nil Values)
  • Урок 35. 00:10:03
    change Matcher
  • Урок 36. 00:04:07
    contain_exactly Matcher
  • Урок 37. 00:06:01
    start_with and end_with Matchers
  • Урок 38. 00:04:36
    have_attributes Matcher
  • Урок 39. 00:06:17
    include Matcher
  • Урок 40. 00:09:12
    raise_error Matcher
  • Урок 41. 00:09:02
    respond_to Matcher
  • Урок 42. 00:09:43
    satisfy Matcher
  • Урок 43. 00:08:22
    not_to Method
  • Урок 44. 00:06:18
    Compound Expectations
  • Урок 45. 00:15:38
    Create a Test Double
  • Урок 46. 00:08:45
    Set up Our Test Movie
  • Урок 47. 00:12:33
    Replacing an Object with a Double
  • Урок 48. 00:07:27
    Receive Counts
  • Урок 49. 00:11:49
    The allow Method
  • Урок 50. 00:10:34
    Matching Arguments
  • Урок 51. 00:13:38
    Instance Doubles
  • Урок 52. 00:13:24
    Class Doubles
  • Урок 53. 00:08:17
    Spies I
  • Урок 54. 00:09:45
    Spies II
  • Урок 55. 00:01:06
    Conclusion