Skip to content

Commit 9417dab

Browse files
committed
example to show capital letters cause no issue
1 parent 1a790ce commit 9417dab

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package co.helmethair.scalatest.example
2+
3+
import org.scalatest.funspec.AnyFunSpec
4+
import org.scalatest.matchers.should.Matchers
5+
6+
class CapitalNameTest extends AnyFunSpec with Matchers {
7+
describe("Capital name") {
8+
it("runs") {
9+
true shouldBe true
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)