Skip to main content

Module testing_framework_tests

Module testing_framework_tests 

Source
Expand description

Tests for testing framework features

This module covers testing framework grammar rules from shape.pest:

  • test_def: test "description" { ... }
  • assert_statement: assert x == 5;
  • test_setup: setup { ... }
  • test_teardown: teardown { ... }
  • test_tag: @slow test "..." { }
  • expect_statement: expect(x).toBe(5);
  • should_statement: x should equal 5;

Constantsยง

TESTS