Skip to content

Instantly share code, notes, and snippets.

[TestFixture]
public class TodoListTestFixture
{
/// <summary>
/// Note to Reviewers:
/// Under normal circumstances, I would create a separate database for the tests, run everything,
/// and then delete the test database.
/// </summary>
[OneTimeSetUp]
public void OneTimeSetup()
@ptabatt
ptabatt / bitcoinRPC.py
Created December 2, 2011 17:53
This is the backend for a Bitcoin RPC Plugin for the Web2py Framework
#!/usr/bin/env python
# coding: utf8
from gluon import *
from jsonrpc import ServiceProxy
import re
#access is a Server Proxy object between web2py and the command
#line program bitcoind using the session variables you supplied
#in the index page
@ptabatt
ptabatt / bitcoinRPC.py
Created December 2, 2011 17:53
This is the backend for a Bitcoin RPC Plugin for the Web2py Framework
#!/usr/bin/env python
# coding: utf8
from gluon import *
from jsonrpc import ServiceProxy
import re
#access is a Server Proxy object between web2py and the command
#line program bitcoind using the session variables you supplied
#in the index page