unitstorm

Unit testing microframework for Storm ORM models
Download

unitstorm Ranking & Summary

Advertisement

  • Rating:
  • License:
  • LGPL v2
  • Price:
  • FREE
  • Publisher Name:
  • Vsevolod Balashov
  • Publisher web site:
  • http://vsevolod.balashov.name

unitstorm Tags


unitstorm Description

Unit testing microframework for Storm ORM models Storm is a small, fast and powerful object-relational mapper. Try it to use in db-aware applications.Effective unit-testing DB-models needed: * easy access to testing-DB inside testcases * setting up testing-DB before each test (and tear down after)To help this unitstorm provides class ModelTestCase, that can be used both in unittest and nosetest testing frameworks.Simple examplefrom unitstorm import ModelTestCasefrom os import pathimport models as model # models define somewhere elseclass TestMyModel(ModelTestCase): dburi = 'postgres://test:test@localhost/test' fixtures = path.join(path.dirname(__file__), 'fixtures') fixture_setup = 'create.sql', 'filldata.sql' fixture_teardown = 'drop.sql' sql_setup = 'INSERT INTO my_model (id, name) VALUES (1, "foo");',\ 'INSERT INTO my_model (id, name) VALUES (2, "bar");' sql_teardown = 'DELETE FROM my_model WHERE id = 1;' def test_stub(self): assert self.store.get(model.MyModel, 1).name == "foo" Requirements: · Python


unitstorm Related Software