All Projects → codewars → python-test-framework

codewars / python-test-framework

Licence: MIT license
Codewars test framework for Python

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to python-test-framework

REST API Test Framework Python
REST API Test Framework example using Python requests and flask for both functional and performance tests.
Stars: ✭ 43 (+7.5%)
Mutual labels:  test-framework
kmtest
Kernel-mode C++ unit testing framework in BDD-style
Stars: ✭ 42 (+5%)
Mutual labels:  test-framework
after-work.js
[DEPRECATED] CLI for automated tests in web projects.
Stars: ✭ 56 (+40%)
Mutual labels:  test-framework
core
The core of Japa. It includes all the primitives to build a test runner
Stars: ✭ 350 (+775%)
Mutual labels:  test-framework
exactly
Exactly - tests a command line program by executing it in a temporary sandbox directory and inspecting its result.
Stars: ✭ 30 (-25%)
Mutual labels:  test-framework
ask-sdk-test
Alexa Skill Test Framework for Typescript and ASK2
Stars: ✭ 22 (-45%)
Mutual labels:  test-framework
portman
Port OpenAPI Specs to Postman Collections, inject test suite and run via Newman 👨🏽‍🚀
Stars: ✭ 530 (+1225%)
Mutual labels:  test-framework
gadgeto
Gadgeto! is a collection of tools that aim to facilitate the development of REST APIs in Go.
Stars: ✭ 38 (-5%)
Mutual labels:  test-framework
eat
Json based scenario testing tool(which can have test for functional and non-functional)
Stars: ✭ 41 (+2.5%)
Mutual labels:  test-framework
bazel-integration-testing
Framework for integration tests that call Bazel
Stars: ✭ 33 (-17.5%)
Mutual labels:  test-framework
HiveRunner
An Open Source unit test framework for Hive queries based on JUnit 4 and 5
Stars: ✭ 244 (+510%)
Mutual labels:  test-framework
evolutio
ab testing framework with automated code removing
Stars: ✭ 15 (-62.5%)
Mutual labels:  test-framework
EyeJS
A JavaScript testing framework for the real world
Stars: ✭ 68 (+70%)
Mutual labels:  test-framework
webspicy
A technology agnostic specification and test framework that yields better coverage for less testing effort.
Stars: ✭ 42 (+5%)
Mutual labels:  test-framework
pysys-test
PySys System Test Framework
Stars: ✭ 14 (-65%)
Mutual labels:  test-framework
testza
Full-featured test framework for Go! Assertions, fuzzing, input testing, output capturing, and much more! 🍕
Stars: ✭ 409 (+922.5%)
Mutual labels:  test-framework
mutest
A BDD testing framework for C, inspired by Mocha
Stars: ✭ 22 (-45%)
Mutual labels:  test-framework
alexa-skill-test-framework
Framework for easy offline black-box testing of Alexa skills.
Stars: ✭ 64 (+60%)
Mutual labels:  test-framework
runner
Issue tracker for Code Runner
Stars: ✭ 25 (-37.5%)
Mutual labels:  code-runner
PixelTest
Fast, modern, simple iOS snapshot testing written purely in Swift.
Stars: ✭ 56 (+40%)
Mutual labels:  test-framework

Codewars Test Framework for Python

Installation

pip install git+https://github.com/codewars/python-test-framework.git#egg=codewars_test

Basic Example

import codewars_test as test
from solution import add

@test.describe('Example Tests')
def example_tests():

    @test.it('Example Test Case')
    def example_test_case():
        test.assert_equals(add(1, 1), 2, 'Optional Message on Failure')
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].