Clone the repo to local dir
Install required modules, e.g. Behave
Run the BDD tool:
$ behave
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image, ImageDraw, ImageFont | |
import string | |
import math | |
# colours from www.flatuicolors.com | |
COLOURS = dict(turquoise="#1abc9c", | |
emerald="#2ecc71", | |
peterRiver="#3498db", | |
amethyst="#9b59b6", | |
wetAsphalt="#34495e", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html > | |
<head> | |
<meta charset="UTF-8"> | |
<title>Code Pen · 1</title> | |
<style> | |
body { | |
position: absolute; font-family: helvetica; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# scheduler.rb | |
class Scheduler | |
class CyclicalDependsError < StandardError | |
end | |
attr_accessor :tasks, :queue, :runables | |
def initialize(tasks, depends = []) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AFeeder | |
{ | |
enum TypesOfInformation | |
{ | |
PatientInformation, | |
SomethingElse | |
} | |
public Feeder() |
NewerOlder