#!/usr/bin/python | |
# Copyright 2012 Google Inc. All Rights Reserved. | |
# | |
# Disable some checks that aren't important for tests: | |
#gpylint: disable-msg=E0602,C6409,C6111,C0111 | |
__author__ = 'Avery Pennarun (apenwarr@google.com)' | |
from wvtest import * | |
@wvtest | |
def TestBasicPython(): | |
WVPASS(True) | |
WVPASSEQ(1, 1) | |
WVPASSNE(1, 2) |