Displaying 2 results from an estimated 2 matches for "winslett".
2008 Apr 17
2
policygentool in selinux-policy-devel-2.4.6-106
...en
ImportError: No module named polgen
Turns out, online 25 the following diff should be made:
- import polgen
+ import sepolgen
I assume the Python module changed names.
I uninstalled the RPM and reinstalled it to ensure I was getting the
same error, and I did.
Christopher Winslett
Harbert Management Corporation
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20080417/6385907b/attachment-0001.html>
2006 May 03
1
Test not Reseting
....
Am I doing something wrong? The "@delete_victim = User.find(4)" bust
the setup class each time it comes around, even though that is in my
users.yml
class UserTest < Test::Unit::TestCase
fixtures :users
def setup
@chris_logged_in = User.new({:username => ''cwinslett'', :password
=> ''testpassword''})
@chris_logged_in = @chris_logged_in.try_to_login
@sherri = User.find(2)
@delete_victim = User.find(4)
end
# Replace this with your real tests.
def test_truth
assert_kind_of User, @chris_logged...