Skip to content

Instantly share code, notes, and snippets.

View ChrisJStone's full-sized avatar

Chris Stone ChrisJStone

  • Twin Falls Id, USA
View GitHub Profile
@ChrisJStone
ChrisJStone / log_test.php
Created July 27, 2011 16:07
assertTrue fails to output message
<?php
require_once(dirname(__FILE__) . '/simpletest/autorun.php');
require_once('../classes/log.php');
class TestOfLogging extends UnitTestCase {
function __construct() {
parent::__construct('Log test');
}
function testCreatingNewFile() {
@ChrisJStone
ChrisJStone / dogfather.dtd
Created September 30, 2011 01:21
Sample dtd for sled.xml
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT dogfather (doghouse+)>
<!ELEMENT doghouse (doghousename, doghouseurl, repository+)>
<!ELEMENT doghousename (#PCDATA)>
<!ELEMENT doghouseurl (#PCDATA)>