,
Milson
On Thursday, October 2, 2014 9:30:21 AM UTC-6, Milson Munakami wrote:
> Hi,
>
>
>
> I am newbie to Python,
>
>
>
> I am trying to use unittest and python. My python script is like this:
>
>
>
> #! /usr/bin/env python
>
> __author__ =
On Saturday, September 27, 2014 5:26:00 PM UTC-6, Milson Munakami wrote:
> I am trying to set the precondition for the test first prior to test other
> test cases. But as you can see in my code the precondition print command is
> not fired! Can you explain the cause and solution how to
Hi,
I am newbie to Python,
I am trying to use unittest and python. My python script is like this:
#! /usr/bin/env python
__author__ = 'Milson Munakami'
__revision__ = '0.0.2'
import json
import urllib
import httplib
from scapy.all import *
import unittest
import os,
I am trying to set the precondition for the test first prior to test other test
cases. But as you can see in my code the precondition print command is not
fired! Can you explain the cause and solution how to fire the code with in that
method i.e. SetPreConditionFirewall() with setup variable sel
On Wednesday, September 24, 2014 1:33:35 PM UTC-6, Milson Munakami wrote:
> Hi,
>
>
>
> I am learning to use unittest with python and walkthrough with this example
>
> http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-1-unittest.html
>
>
> Than
Hi,
I am learning to use unittest with python and walkthrough with this example
http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-1-unittest.html
so my test script is like this:
import json
import urllib
#import time
#from util import *
import httplib
#import sys
#from scapy.all i