a_rule_of_divisibility_by_7_suite_test.go 221 B

12345678910111213
  1. package kata_test
  2. import (
  3. "testing"
  4. . "github.com/onsi/ginkgo"
  5. . "github.com/onsi/gomega"
  6. )
  7. func TestARuleOfDivisibilityBy7(t *testing.T) {
  8. RegisterFailHandler(Fail)
  9. RunSpecs(t, "ARuleOfDivisibilityBy7 Suite")
  10. }