~julian+/testscenarios/testscenarios

« back to all changes in this revision

Viewing changes to doc/test_sample.py

  • Committer: Robert Collins
  • Date: 2009-12-19 03:09:14 UTC
  • Revision ID: robertc@robertcollins.net-20091219030914-89afhwk6oyx8dmek
Switch license to BSD / Apache-2.0 and do a 0.1 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  testscenarios: extensions to python unittest to allow declarative
 
2
#  dependency injection ('scenarios') by tests.
 
3
#
 
4
# Copyright (c) 2009, Robert Collins <robertc@robertcollins.net>
 
5
 
6
# Licensed under either the Apache License, Version 2.0 or the BSD 3-clause
 
7
# license at the users choice. A copy of both licenses are available in the
 
8
# project source as Apache-2.0 and BSD. You may not use this file except in
 
9
# compliance with one of these two licences.
 
10
 
11
# Unless required by applicable law or agreed to in writing, software
 
12
# distributed under these licenses is distributed on an "AS IS" BASIS, WITHOUT
 
13
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 
14
# license you chose for the specific language governing permissions and
 
15
# limitations under that license.
 
16
 
1
17
import unittest
2
18
 
3
19
class TestSample(unittest.TestCase):