Move classes under Spectator::Core

This commit is contained in:
Michael Miller 2024-06-11 19:41:40 -06:00
parent 19ff4669ac
commit 38f61dc74e
No known key found for this signature in database
GPG key ID: 32B47AE8F388A1FF
3 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,5 @@
require "./spectator/core/**"
# Feature-rich testing framework for Crystal inspired by RSpec.
module Spectator
# Current version of the Spectator library.

View file

@ -1,4 +1,4 @@
module Spectator
module Spectator::Core
# Information about a test case and functionality for running it.
class Example
# Name of the example.

View file

@ -1,4 +1,4 @@
module Spectator
module Spectator::Core
# Information about a group of examples and functionality for running them.
# The group can be nested.
class ExampleGroup