Sha256: 905a6694aac849900d0ec3bbbee79bc454633b845f87c7c5b215a0a31c1e16d8

Contents?: true

Size: 230 Bytes

Versions: 3

Compression:

Stored size: 230 Bytes

Contents

#!/usr/bin/env python

def identity(object):
    return object

class RubyPythonMockObject:
    STRING = "STRING"
    STRING_LIST = ["STRING1", "STRING2"]
    INT = 1
    INT_LIST = [1,1]
    FLOAT = 1.0
    FLOAT_LIST = [1.0,1.0]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubypython-0.2.11 test/python_helpers/objects.py
rubypython-0.2.10 test/python_helpers/objects.py
rubypython-0.2.9 test/python_helpers/objects.py